home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
TPUG - Toronto PET Users Group
/
TPUG Users Group CD
/
TPUG Users Group CD.iso
/
PET
/
S-Super PET
/
(s)t7.d64
/
BASIC_PRINT
< prev
next >
Wrap
Text File
|
2009-01-18
|
421b
|
20 lines
1 !program prints a file
5 on eof ignore
10 open #9,"apldata3",output
20 open #8,"apldata2",input
25 input #8,b$
30 input #8,a$
40 if io_status$="eof" then go to 120
50 if a$=" 0 0" then go to 30
80 if str$(a$,1,1)=chr$(10)
84 print #9,str$(a$,2,79)
85 print a$
86 go to 30
87 endif
90 print #9,a$
95 print a$
105 go to 30
125 close #9
130 close #8
140 end